home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / zeroboard_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  67 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: albanian haxorz
  4. # This script is released under the GNU GPL v2
  5.  
  6. if(description)
  7. {
  8.   script_id(17199);
  9.   script_bugtraq_id(12596);
  10.   script_version("$Revision: 1.1 $");
  11.   
  12.   script_name(english:"ZeroBoard XSS");
  13.  
  14.  desc["english"] = "
  15. The remote web server is hosting ZeroBoard, a web-based BBS application.
  16.  
  17. The remote version of this software is vulnerable to cross-site scripting 
  18. and remote script injection due to a lack of sanitization of user-supplied 
  19. data.
  20.  
  21. Successful exploitation of this issue may allow an attacker to execute 
  22. malicious script code on a vulnerable server. 
  23.  
  24. Solution: Upgrade to the latest version
  25. Risk factor : Medium";
  26.  
  27.   script_description(english:desc["english"]);
  28.   script_summary(english:"Checks ZeroBoard XSS");
  29.   script_category(ACT_GATHER_INFO);
  30.   script_copyright(english:"This script is Copyright (C) 2005 David Maciejak");
  31.   script_family(english:"CGI abuses");
  32.   script_require_ports("Services/www", 80);
  33.   script_dependencie("http_version.nasl", "cross_site_scripting.nasl");
  34.   exit(0);
  35. }
  36.  
  37. #the code
  38.  
  39. include("http_func.inc");
  40. include("http_keepalive.inc");
  41.  
  42. port = get_http_port(default:80);
  43. if ( ! get_port_state(port))exit(0);
  44. if ( ! can_host_php(port:port) ) exit(0);
  45.  
  46. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  47.  
  48.  
  49. function check(loc)
  50. {
  51.   buf = http_get(item:string(loc,"/zboard.php?id=gallery&sn1=ALBANIAN%20RULEZ='%3E%3Cscript%3Efoo%3C/script%3E"), port:port);
  52.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  53.  
  54.   if( r == NULL )exit(0);
  55.  
  56.   if("<script>foo</script>" >< r )
  57.   {
  58.     security_warning(port);
  59.     exit(0);
  60.   }
  61. }
  62.  
  63. foreach dir (make_list("/bbs",cgi_dirs()))
  64. {
  65.  check(loc:dir);
  66. }
  67.